home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 3_9.lha / 3_9 / makefile < prev   
Makefile  |  1993-08-08  |  273b  |  16 lines

  1. C= CC -I. -I../../CC
  2. ll: 3_9atst 3_9btst
  3.  
  4. _9atst: 3_9atst.c 3_9a.c
  5. $(CC) 3_9atst.c -o 3_9atst
  6.  
  7. _9btst: 3_9btst.c 3_9b.c
  8. $(CC) 3_9btst.c -o 3_9btst
  9.  
  10. est: all 3_9a.cmp 3_9b.cmp
  11. 3_9atst > 3_9a.out
  12. cmp 3_9a.out 3_9a.cmp
  13. 3_9btst > 3_9b.out
  14. cmp 3_9b.out 3_9b.cmp
  15. echo tests done
  16.